--- permalink: /python/style-template description: Markdown CSS Style Template name: Markdown CSS Style Template has_thumbnail: false thumbnail: /images/static-image language: python layout: user-guide page_type: u-guide sitemap: false --- {% raw %}

This is an H1

This is an H2

This is an H3

This is an H4

This is an H5
This is an H6

This is a block of text.

  • Here is a list
  • of items
  1. and
  2. a few
  3. numbers

this is a quote

All you need to do is pip install plotly and then import plotly.plotly as py

Emailing Plotly Graphs

In the Plotly Webapp you can share your graphs over email to your colleagues who are also Plotly members. If your making graphs periodically or automatically, e.g. in Python with a cron job, it can be helpful to also share the graphs that you're creating in an email to your team.

This notebook is a primer on sending nice HTML emails with Plotly graphs in Python. We use:

In [1]:
# This is a comment
from plotly.offline import iplot, init_notebook_mode
In [2]:
init_notebook_mode()
In [3]:
iplot([{'x': [1, 2, 3], 'y': [3, 1, 5]}])
Drawing...

Updating graphs

If we use the same filename, the graph will save to the same URL. So, if we include a graph in an email by it's URL, we can update that graph by calling py.plot with the same filename.

In [14]:
for i in range(100):
    print i
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
In [ ]:
 
{% endraw %}